home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1997 July / macformat52.iso / mac / Shareware Plus / Educational / LEE 2.1 / Source / stats.c < prev    next >
Text File  |  1996-07-29  |  720b  |  29 lines

  1. /* stats.c
  2.  *                         Copyright (1993)
  3.  *
  4.  *         Jeff Elman.  University of California, San Diego
  5.  *          Rik Belew.  University of California, San Diego
  6.  *      Stefano Nolfi.  Institute of Psychology, Rome.
  7.  *    Filippo Menczer.  University of California, San Diego
  8.  *        Greg Linden.  University of California, San Diego
  9.  *
  10.  *        This software may be redistributed without charge;
  11.  *                 this notice should be preserved.
  12.  */
  13.  
  14. #include "defs.h"
  15.  
  16.  
  17. /*
  18.  * called by generati() in populati.c;
  19.  * we save on the results (.dat) file
  20.  * whatever the experiment needs to monitor;
  21.  * format: [tab datum tab datum ... tab datum] 
  22.  */
  23. save_dat(fp)
  24.  
  25.     FILE    *fp;
  26. {
  27.     return;    /* NOP */
  28. }
  29.